home *** CD-ROM | disk | FTP | other *** search
/ Java 1996 August / Java - Summer 1996.iso / rockridge / java / nutsandbolts / alphaexample / Count.java < prev    next >
Encoding:
Java Source  |  1995-11-13  |  213 b   |  10 lines

  1. class Count {
  2.     public static void main(String args[]) {
  3.         int count = 0;
  4.  
  5.         while (System.in.read() != -1)
  6.             count++;
  7.         System.out.println("Input has " + count + " chars.");
  8.     }
  9. }
  10.